# 04-26-24    RD   Testing the LDA Ethernet socket support
# 05-19-24    RD   Additional example command line program
all : ldatestapp LDA64_EthTest

# Build the command line test app
ldatestapp : ldatestapp.c ldadrvr.h

	gcc -o ldatestapp ldatestapp.c -I. -lldasock -lm

LDA64_EthTest : LDA64_EthTest.c ldadrvr.h

	gcc -o LDA64_EthTest LDA64_EthTest.c -I. -lldasock -lm

clean :
	rm -f ldatestapp
	rm -f LDA64_EthTest


